home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _ABB9EA82676D4DCD85A303D4F69D4FE8 < prev    next >
Encoding:
Text File  |  2006-08-04  |  918 b   |  30 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_ArtEraserTool():
  13.     return {
  14.         'Size': 3, 
  15.         'Shape': App.Constants.ArtMediaBrushShape.Elliptical, 
  16.         'Thickness': 100, 
  17.         'Rotation': 0, 
  18.         'HeadTracking': App.Constants.ArtMediaBrushRotation.RotateAlongPath, 
  19.         'GeneralSettings': {
  20.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  21.             'RandomSeed': None, 
  22.             'AutoActionMode': App.Constants.AutoActionMode.Match
  23.             }
  24.         }
  25.  
  26. def Do(Environment):
  27.     # ArtEraserTool_LOCALIZED
  28.     App.Do( Environment, 'ArtEraserTool',         Preset_ArtEraserTool())
  29.  
  30.